home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / Alert_e.h < prev    next >
C/C++ Source or Header  |  1992-04-27  |  513b  |  22 lines

  1. #ifndef Alert_e_First
  2. #ifdef __GNUG__
  3. //pragma once
  4. #endif
  5. #define Alert_e_First
  6.  
  7. class Font;
  8.  
  9. enum AlertType {
  10.     eAlertNote,         // OK-Button
  11.     eAlertCaution,      // Yes, Cancel and No-Button
  12.     eAlertStop,         // Yes, Cancel and No-Button
  13.     eAlertMessage,      // OK-Button, no image
  14.     eAlertSun,          // OK-Button, Sun-Logo
  15.     eAlertError         // image only
  16. };
  17.  
  18. extern int ShowAlert(AlertType at, char* fmt, ...);
  19. extern int ShowAlert(AlertType at, Font *fp, char* fmt, ...);
  20.  
  21. #endif
  22.